home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / tcp_ip / tnos / tnos100s / myconfig.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-07  |  4.8 KB  |  106 lines

  1. #ifndef    _CONFIG_H
  2. #define    _CONFIG_H
  3. /* This is a serial port only configuration */
  4.  
  5. /* Software options */
  6. #define    MAILBOX        1    /* Include SM0RGV mailbox server */
  7. #undef CONVERS       1   /* Conference bridge (babble-box :-) */
  8. #undef NNTP        1   /* Netnews client */
  9. #undef NNTPS       1   /* Netnews client and server */
  10. #define SERVERS    1   /* Include TCP servers */
  11. #define TRACE       1   /* Include packet tracing code */
  12. #undef RIP         1   /* Include RIP routing */
  13. #undef HOPCHECK    1   /* IP path tracing command */
  14. #undef DIALER      1   /* SLIP redial code */
  15. #define NRS         1   /* NET/ROM async interface */
  16. #define NETROM      1   /* NET/ROM network support */
  17. #undef LZW         1   /* LZW-compressed sockets */
  18. #undef RLOGINCLI   1   /* Rlogin client code */
  19. #define SLIP        1   /* Serial line IP on built-in ports */
  20. #undef PPP         1   /* Point-to-Point Protocol code */
  21. #undef VJCOMPRESS  1   /* Van Jacobson TCP compression for SLIP */
  22. #undef POP         1   /* Include POP2 Post Office Protocol */
  23. #undef ESCAPE      1   /* Allow Unix style escape on PC */
  24. #undef RSPF        1   /* Include Radio Shortest Path First Protocol */
  25. #undef AXIP        1   /* digipeater via ip port 93 interface */
  26. #undef RARP        1   /* Include Reverse Address Resolution Protocol */
  27. #undef CALLBOOK    1   /* Simple callbook server over Internet */
  28. #undef CALLSERVER   1   /* Include BuckMaster CDROM server support */
  29. #undef CALLCLI      1   /* Include BuckMaster CDROM client code only  */
  30. #define ATCMD       1   /* Include timed 'at' execution */
  31. #define EXPIRY      1   /* Include message and bid expiry */
  32. #define MBXTDISC    1   /* Include mailbox timeout-disconnect */
  33. #undef NR4TDISC    1   /* Include Netrom L4 timeout-disconnect */
  34. #define FTPTDISC    1   /* Include ftp-server timeout disconnect */
  35. #undef TIPMAIL     1   /* Include TIP mailbox server */
  36. #undef IPACCESS    1   /* Include IP access control code */
  37. #undef ENCAP       1   /* Include IP encapsulation code */
  38. #undef AUTOROUTE   1   /* Include AX.25 IP auto-route code(causes problems when VC mode is used for ip) */
  39. #undef LOCK        1   /* Include keyboard locking */
  40. #define MAILFOR     1   /* Include Mailbox 'Mail for' beacon */
  41. #define RLINE       1   /* Include BBS R:-line interpretation code */
  42. #define MBFWD       1   /* Include Mailbox AX.25 forwarding */
  43. #define USERLOG     1    /* Include last-message-read tracking for users */
  44. #undef MULTITASK   1   /* Include Dos shell multi-tasker */
  45. #define SHELL       1   /* Include shell command */
  46. #define ALLSESSIONS 1   /* Include all session types */
  47. /*if undefined, deletes outgoing telnet,ftp,ax25,netrom sessions */
  48. #define ALLCMD     1    /* if undefined, exclude a bunch of commands */
  49. /*excluded are:
  50.  *   delete,rename,more,tail,dump,status,motd,cd,dir,finger,fkey,info,mail,mkdir
  51.  *   pwd,record,rmdir,watch,test,upload
  52.  */
  53. #define ALLSERV      1   /* if undefined, exclude a bunch of servers */
  54. /*excluded are:
  55.  *echo,discard,tip and ttylink servers
  56.  *and the ttylink command (with no split screen code anymore)
  57.  */
  58.  
  59. /* Software tuning parameters */
  60. #define MTHRESH     16384     /* Default memory threshold */
  61. #define NROWS       25      /* Number of rows on screen */
  62. #define NIBUFS      5       /* Number of interrupt buffers */
  63. #define IBUFSIZE    2048    /* Size of interrupt buffers */
  64. #define NSESSIONS   10      /* Number of interactive clients */
  65. #define DEFNSOCK    40      /* Default number of sockets */
  66.  
  67. /* Hardware driver options */
  68. #undef ARCNET      1   /* ARCnet via PACKET driver */
  69. #undef PC_EC       1   /* 3-Com 3C501 Ethernet controller */
  70. #define KISS        1   /* KISS TNC code */
  71. #undef HS          1   /* High speed (56kbps) modem driver */
  72. #undef HAPN        1   /* Hamilton Area Packet Network driver code */
  73. #undef EAGLE       1   /* Eagle card driver */
  74. #undef PACKET      1   /* FTP Software's Packet Driver interface */
  75. #undef PC100       1   /* PAC-COM PC-100 driver code */
  76. #undef APPLETALK   1   /* Appletalk interface (Macintosh) */
  77. #undef DRSI        1   /* DRSI PCPA slow-speed driver */
  78. #undef SCC         1   /* PE1CHL generic scc driver */
  79. #undef PI          1   /* VE3IFB pi dma card scc driver */
  80. #define ASY         1   /* Asynch driver code */
  81. #undef SLFP         1   /* SLFP packet driver class supported */
  82.  
  83. #if defined(NRS)
  84. #undef    NETROM
  85. #define    NETROM        1    /* NRS implies NETROM */
  86. #endif
  87.  
  88. #if (defined(AXIP)||defined(HS)||defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100)||defined(PI))
  89. #define    AX25        1    /* AX.25 subnet code */
  90. #endif
  91.  
  92. #if (defined(ARCNET) || defined(SLFP))
  93. #undef    PACKET
  94. #define    PACKET        1    /* FTP Software's Packet Driver interface */
  95. #endif
  96.  
  97. #if (defined(PC_EC) || defined(PACKET))
  98. #define    ETHER    1        /* Generic Ethernet code */
  99. #endif
  100.  
  101. #if defined(CALLSERVER)
  102. #define CALLCLI     1
  103. #endif
  104.  
  105. #endif    /* _CONFIG_H */
  106.